mirror of
https://github.com/anatolykopyl/vk-mute.git
synced 2026-03-26 04:45:15 +00:00
Added icons
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
chrome.runtime.onInstalled.addListener(function() {
|
||||
chrome.storage.sync.set({isExtensionOn: true}, function() {
|
||||
console.log('isExtensionOn: '+true);
|
||||
});
|
||||
chrome.storage.sync.set({isExtensionOn: true}, function() {
|
||||
console.log('isExtensionOn: '+true);
|
||||
});
|
||||
|
||||
chrome.declarativeContent.onPageChanged.removeRules(undefined, function() {
|
||||
chrome.declarativeContent.onPageChanged.addRules([{
|
||||
conditions: [new chrome.declarativeContent.PageStateMatcher({
|
||||
pageUrl: {hostEquals: 'vk.com'},
|
||||
})
|
||||
],
|
||||
actions: [new chrome.declarativeContent.ShowPageAction()]
|
||||
}]);
|
||||
});
|
||||
});
|
||||
chrome.declarativeContent.onPageChanged.removeRules(undefined, function() {
|
||||
chrome.declarativeContent.onPageChanged.addRules([{
|
||||
conditions: [new chrome.declarativeContent.PageStateMatcher({
|
||||
pageUrl: {hostEquals: 'vk.com'},
|
||||
})
|
||||
],
|
||||
actions: [new chrome.declarativeContent.ShowPageAction()]
|
||||
}]);
|
||||
});
|
||||
});
|
||||
BIN
icon128.png
Normal file
BIN
icon128.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 20 KiB |
BIN
icon140.png
Normal file
BIN
icon140.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
BIN
icon48.png
Normal file
BIN
icon48.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.5 KiB |
@@ -1,5 +1,9 @@
|
||||
{
|
||||
"name": "Hide Cringe",
|
||||
"icons": {
|
||||
"128": "icon128.png",
|
||||
"48": "icon48.png"
|
||||
},
|
||||
"version": "1.0",
|
||||
"description": "Hides cringe",
|
||||
"permissions": ["activeTab", "declarativeContent", "storage"],
|
||||
@@ -15,10 +19,12 @@
|
||||
"manifest_version": 2,
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": [
|
||||
"https://*.vk.com/*"
|
||||
],
|
||||
"matches": ["https://*.vk.com/*"],
|
||||
"js": ["hide_element.js"]
|
||||
},
|
||||
{
|
||||
"matches": ["https://*.vk.com/*"],
|
||||
"js": ["controls.js"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
2
popup.js
2
popup.js
@@ -51,7 +51,7 @@ disableCheckbox.addEventListener('change', (event) => {
|
||||
});
|
||||
});
|
||||
|
||||
idToHideInput.addEventListener('input', (event) => {
|
||||
idToHideInput.addEventListener('input', () => {
|
||||
chrome.storage.sync.set({idToHide: idToHideInput.value}, function() {
|
||||
console.log('idToHide: '+idToHideInput.value);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user