I have been currently working on user scripts for Chrome that can function without the use of Tampermonkey. Today I added a third party extension (a userscript js) to the Chrome extensions:
// ==UserScript==
// @name "job changer"
// @namespace Marshmellows
// @version 0.1
// @description Change 'Jobs' in stackoverflow to Hello!
// @match http://stackoverflow.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
document.addEventListener('DOMContentLoaded', function() {
document.getElementById('nav-jobs').innerHTML = 'Hello!';
}, false);
I added this to the Chrome extensions by simply dragging the file inside (it worked fine).
I restarted Chrome and discovered that it had completely blocked my js file extension.
I can't seem to find a solution for this problem. I went on Chrome's forum and tried to find ways to create a
.crx
file. But because I am quite new to web development and the DOM, I feel like I need some guidance. Can anything be done?